home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_200
/
273_01
/
putsa.cc
< prev
next >
Wrap
Text File
|
1987-09-26
|
379b
|
14 lines
put_sa(char *ch, int attr)
/* This will put the character string pointer to by *ch on the screen
at the current cursor location using attribute attr.
*/
{
while(*ch) {
if((*ch != '\x0d') && (*ch !='\x0a')) {
put_ca(*ch,attr,1);
cur_rt();
}
ch++;
}
}